home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / bash / bashrc < prev   
Text File  |  2006-04-25  |  2KB  |  55 lines

  1. # /etc/bash/bashrc
  2. #
  3. # This file is sourced by all *interactive* bash shells on startup,
  4. # including some apparently interactive shells such as scp and rcp
  5. # that can't tolerate any output.  So make sure this doesn't display
  6. # anything or bad things will happen !
  7.  
  8.  
  9. # Test for an interactive shell.  There is no need to set anything
  10. # past this point for scp and rcp, and it's important to refrain from
  11. # outputting anything in those cases.
  12. if [[ $- != *i* ]] ; then
  13.     # Shell is non-interactive.  Be done now!
  14.     return
  15. fi
  16.  
  17. # Bash won't get SIGWINCH if another process is in the foreground.
  18. # Enable checkwinsize so that bash will check the terminal size when
  19. # it regains control.  #65623
  20. # http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
  21. shopt -s checkwinsize
  22.  
  23. # Set colorful PS1 only on colorful terminals.
  24. # dircolors --print-database uses its own built-in database
  25. # instead of using /etc/DIR_COLORS.  Try to use the external file
  26. # first to take advantage of user additions.
  27. use_color=false
  28. safe_term=${TERM//[^[:alnum:]]/.}    # sanitize TERM
  29.  
  30. if [[ -f /etc/DIR_COLORS ]] ; then
  31.     grep -q "^TERM ${safe_term}" /etc/DIR_COLORS && use_color=true
  32. elif type -p dircolors >/dev/null ; then
  33.     if dircolors --print-database | grep -q "^TERM ${safe_term}" ; then
  34.         use_color=true
  35.     fi
  36. fi
  37.  
  38. if ${use_color} ; then
  39.     if [[ ${EUID} == 0 ]] ; then
  40.         PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
  41.     else
  42.         PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
  43.     fi
  44. else
  45.     if [[ ${EUID} == 0 ]] ; then
  46.         # show root@ when we don't have colors
  47.         PS1='\u@\h \W \$ '
  48.     else
  49.         PS1='\u@\h \w \$ '
  50.     fi
  51. fi
  52.  
  53. # Try to keep environment pollution down, EPA loves us.
  54. unset use_color safe_term
  55.